home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
CAD
/
PCONFRE2.ARJ
/
SETLAYER.LSP
< prev
Wrap
Text File
|
1989-10-13
|
365b
|
13 lines
; touch entity and the system goes to the layer the entity
; resides on
(defun c:SETLAYER (/ LAYER)
(setq LAYER
(cdr
(assoc 8
(entget
(car
(entsel "Pick item for new layer "
))))))
(command "LAYER" "SET" layer "")
)